home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue45 / Clinic / ClientForm2U.pas < prev    next >
Pascal/Delphi Source File  |  2000-11-02  |  1KB  |  52 lines

  1. unit ClientForm2U;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls, ExtCtrls, Server_Stub2;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     Timer1: TTimer;
  12.     Label1: TLabel;
  13.     procedure FormCreate(Sender: TObject);
  14.     procedure Timer1Timer(Sender: TObject);
  15.   public
  16.     Server: ITest;
  17.   end;
  18.  
  19. var
  20.   Form1: TForm1;
  21.  
  22. implementation
  23.  
  24. uses
  25.   CorbaObj;
  26.  
  27. {$R *.DFM}
  28.  
  29. procedure TForm1.FormCreate(Sender: TObject);
  30. var
  31.   Factory: ITestFactory;
  32. begin
  33.   Factory := CorbaBind('IDL:Server/TestFactory:1.0') as ITestFactory;
  34.   Server := Factory.CreateInstance('');
  35.   Timer1.Enabled := True
  36. end;
  37.  
  38. procedure TForm1.Timer1Timer(Sender: TObject);
  39. begin
  40.   try
  41.     Label1.Caption := DateTimeToStr(Server.Get_DateAndTime)
  42.   except
  43.     on E: Exception do
  44.     begin
  45.       Timer1.Enabled := False;
  46.       Label1.Caption := Format('Server not available (an %s exception occurred, saying "%s")', [E.ClassName, E.Message])
  47.     end
  48.   end
  49. end;
  50.  
  51. end.
  52.